.services {
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
}
@media screen and (min-width: 720px) {
  .services-filters {
    width: 300px;
  }
}
.service-description {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}
.park-amenities {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 0.25rem;
  font-size: 1.25rem;
  gap: 0.25em;
}
.services-filters>button::after {
  width: 0;
}
.services-empty-message {
  display: none;
}
.services:not(:has(*))+.services-empty-message {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 1px solid #999;
  padding: 1rem;
}
.services-empty-message>i {
  color: #333;
}
.services-empty-message>div {
  text-align: center;
  text-wrap: balance;
}